Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit c499706daf041a96a62a1cca5c51c211a9e77383


Parents : 5739b33
Author : Mark Qvist <mark@unsigned.io>
Date : 2022-11-23T20:47:38+01:00

Cleanup

Changes

1 files changed, 3 insertions(+), 6 deletions(-)


Diff

diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py
index adf72ae4..fc5b8cef 100644
--- a/sbapp/sideband/core.py
+++ b/sbapp/sideband/core.py
@@ -1555,19 +1555,16 @@ class SidebandCore():
rnode_allow_bluetooth = False
if self.getpersistent("permissions.bluetooth"):
if self.config["hw_rnode_bluetooth"]:
- # TODO: Remove
- RNS.log("Allowing RNode bluetooth")
+ RNS.log("Allowing RNode bluetooth", RNS.LOG_DEBUG)
rnode_allow_bluetooth = True
if self.config["hw_rnode_bt_device"] != None:
bt_device_name = self.config["hw_rnode_bt_device"]
else:
- # TODO: Remove
- RNS.log("Disallowing RNode bluetooth since config is disabled")
+ RNS.log("Disallowing RNode bluetooth since config is disabled", RNS.LOG_DEBUG)
rnode_allow_bluetooth = False
else:
- # TODO: Remove
- RNS.log("Disallowing RNode bluetooth due to missing permission")
+ RNS.log("Disallowing RNode bluetooth due to missing permission", RNS.LOG_DEBUG)
rnode_allow_bluetooth = False


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────